home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / dl_exsrc.zoo / membook.h < prev    next >
C/C++ Source or Header  |  1994-07-03  |  441b  |  18 lines

  1. /* Internal memory bookkeeping information from the MiNTlibs'
  2.    malloc()/realloc()/free() routines.  This will need to change if the
  3.    MiNTlibs routines change; not likely, but you never know... */
  4.  
  5. struct mem_chunk 
  6.     {
  7.     long valid;
  8. #define VAL_FREE  0xf4ee0abcL
  9. #define VAL_ALLOC 0xa11c0abcL
  10.  
  11.     struct mem_chunk *next;
  12.     unsigned long size;
  13.     };
  14.  
  15. /* linked list of free blocks */
  16.  
  17. extern struct mem_chunk _mchunk_free_list;
  18.